func math/big.shlVU

6 uses

	math/big (current package)
		arith_decl.go#L16: func shlVU(z, x []Word, s uint) (c Word)
		float.go#L583: 		c := shlVU(m, m, s)
		nat.go#L512: 	t[2*n-1] = shlVU(t[1:2*n-1], t[1:2*n-1], 1) // double the j < i products
		nat.go#L699: 	z[n] = shlVU(z[n-m:n], x, s%_W)
		natdiv.go#L590: 	shlVU(v, vIn, shift)
		natdiv.go#L592: 	u[len(uIn)] = shlVU(u[0:len(uIn)], uIn, shift)